home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 001-025 / scopedisk11 / rex / rexx.h < prev    next >
C/C++ Source or Header  |  1995-03-18  |  664b  |  27 lines

  1. /*
  2.  *
  3.  * A few additional defines to make life a little easier.
  4.  *
  5.  * (c) Copyright 1987 Kim DeVaughn, All Rights Reserved
  6.  *
  7.  */
  8.  
  9. #ifndef REXX_STORAGE_H
  10. #include <rexx/storage.h>
  11. #endif
  12.  
  13. #ifndef REXX_H
  14. #define REXX_H
  15.  
  16.  
  17. /* more RexxMsg field definitions                       */
  18.  
  19. #define ACTION(rmp) (rmp->rm_Action)       /* command (action) code        */
  20. #define RESULT1(rmp) (rmp->rm_Result1)     /* primary result (return code) */
  21. #define RESULT2(rmp) (rmp->rm_Result2)     /* secondary result             */
  22. #define COMM_ADDR(rmp) (rmp->rm_CommAddr)  /* host address (port name)     */
  23. #define FILE_EXT(rmp) (rmp->rm_FileExt)    /* file extension               */
  24.  
  25. #endif
  26.  
  27.